home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / sed / sed113.zoo / sed.c < prev    next >
C/C++ Source or Header  |  1993-01-01  |  40KB  |  1,829 lines

  1. /*  GNU SED, a batch stream editor.
  2.     Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc.
  3.  
  4.     This program is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU General Public License as published by
  6.     the Free Software Foundation; either version 2, or (at your option)
  7.     any later version.
  8.  
  9.     This program is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.     GNU General Public License for more details.
  13.  
  14.     You should have received a copy of the GNU General Public License
  15.     along with this program; if not, write to the Free Software
  16.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. #ifdef __STDC__
  19. #define VOID void
  20. #else
  21. #define VOID char
  22. #endif
  23.  
  24. #define _GNU_SOURCE
  25. #include <ctype.h>
  26. #ifndef isblank
  27. #define isblank(c) ((c) == ' ' || (c) == '\t')
  28. #endif
  29. #include <stdio.h>
  30. #include <sys/types.h>
  31. #include "regex.h"
  32. #include "getopt.h"
  33. #if defined(STDC_HEADERS)
  34. #include <stdlib.h>
  35. #endif
  36. #if defined(USG) || defined(STDC_HEADERS)
  37. #include <string.h>
  38. #if !defined(STDC_HEADERS)
  39. #include <memory.h>
  40. #endif
  41. #else
  42. #include <strings.h>
  43. #endif
  44.  
  45.  
  46. /*
  47.    GCC 2.3.1 PL1 with MiNTlibs PL25 doesn't seem to like any of the
  48.    following two choices, so when you compile this source on an Atari
  49.    they both are ifdef'ed out. If I interpret the source and include-
  50.    files correctly it doesn't affect the finished executable. However,
  51.    a mistake or two is always easy to make.  :-)
  52.  
  53.    -Daniel Eriksson
  54. */
  55. #ifndef atarist
  56.  
  57.  
  58. #ifndef HAVE_BCOPY
  59. #ifdef HAVE_MEMCPY
  60. #define bcopy(FROM,TO,LEN)  memcpy(TO,FROM,LEN,sizseof(char))
  61. #else
  62. void
  63. bcopy (from, to, len)
  64.      char *from;
  65.      char *to;
  66.      int len;
  67. {
  68.   if (from < to)
  69.     {
  70.       from += len - 1;
  71.       to += len - 1;
  72.       while (len--)
  73.     *to-- = *from--;
  74.     }
  75.   else
  76.     while (len--)
  77.       *to++ = *from++;
  78. }
  79.  
  80. #endif
  81. #endif
  82.  
  83. #endif /* atarist */
  84.  
  85. char *version_string = "GNU sed version 1.13 Atari";
  86.  
  87. /* Struct vector is used to describe a chunk of a sed program.  There is one
  88.    vector for the main program, and one for each { } pair. */
  89. struct vector
  90.   {
  91.     struct sed_cmd *v;
  92.     int v_length;
  93.     int v_allocated;
  94.     struct vector *return_v;
  95.     int return_i;
  96.   };
  97.  
  98.  
  99. /* Goto structure is used to hold both GOTO's and labels.  There are two
  100.    separate lists, one of goto's, called 'jumps', and one of labels, called
  101.    'labels'.
  102.    the V element points to the descriptor for the program-chunk in which the
  103.    goto was encountered.
  104.    the v_index element counts which element of the vector actually IS the
  105.    goto/label.  The first element of the vector is zero.
  106.    the NAME element is the null-terminated name of the label.
  107.    next is the next goto/label in the list. */
  108.  
  109. struct sed_label
  110.   {
  111.     struct vector *v;
  112.     int v_index;
  113.     char *name;
  114.     struct sed_label *next;
  115.   };
  116.  
  117. /* ADDR_TYPE is zero for a null address,
  118.    one if addr_number is valid, or
  119.    two if addr_regex is valid,
  120.    three, if the address is '$'
  121.  
  122.    Other values are undefined.
  123.  */
  124.  
  125. #define ADDR_NULL    0
  126. #define ADDR_NUM    1
  127. #define ADDR_REGEX    2
  128. #define ADDR_LAST    3
  129.  
  130. struct addr
  131.   {
  132.     int addr_type;
  133.     struct re_pattern_buffer *addr_regex;
  134.     int addr_number;
  135.   };
  136.  
  137.  
  138. /* Aflags:  If the low order bit is set, a1 has been
  139.    matched; apply this command until a2 matches.
  140.    If the next bit is set, apply this command to all
  141.    lines that DON'T match the address(es).
  142.  */
  143.  
  144. #define A1_MATCHED_BIT    01
  145. #define ADDR_BANG_BIT    02
  146.  
  147.  
  148. struct sed_cmd
  149.   {
  150.     struct addr a1, a2;
  151.     int aflags;
  152.  
  153.     char cmd;
  154.  
  155.     union
  156.       {
  157.     /* This structure is used for a, i, and c commands */
  158.     struct
  159.       {
  160.         char *text;
  161.         int text_len;
  162.       }
  163.     cmd_txt;
  164.  
  165.     /* This is used for b and t commands */
  166.     struct sed_cmd *label;
  167.  
  168.     /* This for r and w commands */
  169.     FILE *io_file;
  170.  
  171.     /* This for the hairy s command */
  172.     /* For the flags var:
  173.            low order bit means the 'g' option was given,
  174.            next bit means the 'p' option was given,
  175.            and the next bit means a 'w' option was given,
  176.               and wio_file contains the file to write to. */
  177.  
  178. #define S_GLOBAL_BIT    01
  179. #define S_PRINT_BIT    02
  180. #define S_WRITE_BIT    04
  181. #define S_NUM_BIT    010
  182.  
  183.     struct
  184.       {
  185.         struct re_pattern_buffer *regx;
  186.         char *replacement;
  187.         int replace_length;
  188.         int flags;
  189.         int numb;
  190.         FILE *wio_file;
  191.       }
  192.     cmd_regex;
  193.  
  194.     /* This for the y command */
  195.     unsigned char *translate;
  196.  
  197.     /* For { */
  198.     struct vector *sub;
  199.  
  200.     /* for t and b */
  201.     struct sed_label *jump;
  202.       } x;
  203.   };
  204.  
  205. /* Sed operates a line at a time. */
  206. struct line
  207.   {
  208.     char *text;            /* Pointer to line allocated by malloc. */
  209.     int length;            /* Length of text. */
  210.     int alloc;            /* Allocated space for text. */
  211.   };
  212.  
  213. /* This structure holds information about files opend by the 'r', 'w',
  214.    and 's///w' commands.  In paticular, it holds the FILE pointer to
  215.    use, the file's name, a flag that is non-zero if the file is being
  216.    read instead of written. */
  217.  
  218. #define NUM_FPS    32
  219. struct
  220.   {
  221.     FILE *phile;
  222.     char *name;
  223.     int readit;
  224.   }
  225.  
  226. file_ptrs[NUM_FPS];
  227.  
  228.  
  229. #if defined(__STDC__)
  230. # define P_(s) s
  231. #else
  232. # define P_(s) ()
  233. #endif
  234.  
  235. void close_files ();
  236. void panic P_ ((char *str,...));
  237. char *__fp_name P_ ((FILE * fp));
  238. FILE *ck_fopen P_ ((char *name, char *mode));
  239. void ck_fwrite P_ ((char *ptr, int size, int nmemb, FILE * stream));
  240. void ck_fclose P_ ((FILE * stream));
  241. VOID *ck_malloc P_ ((int size));
  242. VOID *ck_realloc P_ ((VOID * ptr, int size));
  243. char *ck_strdup P_ ((char *str));
  244. VOID *init_buffer P_ ((void));
  245. void flush_buffer P_ ((VOID * bb));
  246. int size_buffer P_ ((VOID * b));
  247. void add_buffer P_ ((VOID * bb, char *p, int n));
  248. void add1_buffer P_ ((VOID * bb, int ch));
  249. char *get_buffer P_ ((VOID * bb));
  250.  
  251. void compile_string P_ ((char *str));
  252. void compile_file P_ ((char *str));
  253. struct vector *compile_program P_ ((struct vector * vector));
  254. void bad_prog P_ ((char *why));
  255. int inchar P_ ((void));
  256. void savchar P_ ((int ch));
  257. int compile_address P_ ((struct addr * addr));
  258. void compile_regex P_ ((int slash));
  259. struct sed_label *setup_jump P_ ((struct sed_label * list, struct sed_cmd * cmd, struct vector * vec));
  260. FILE *compile_filename P_ ((int readit));
  261. void read_file P_ ((char *name));
  262. void execute_program P_ ((struct vector * vec));
  263. int match_address P_ ((struct addr * addr));
  264. int read_pattern_space P_ ((void));
  265. void append_pattern_space P_ ((void));
  266. void line_copy P_ ((struct line * from, struct line * to));
  267. void line_append P_ ((struct line * from, struct line * to));
  268. void str_append P_ ((struct line * to, char *string, int length));
  269. void usage P_ ((void));
  270.  
  271. extern char *myname;
  272.  
  273. /* If set, don't write out the line unless explictly told to */
  274. int no_default_output = 0;
  275.  
  276. /* Current input line # */
  277. int input_line_number = 0;
  278.  
  279. /* Are we on the last input file? */
  280. int last_input_file = 0;
  281.  
  282. /* Have we hit EOF on the last input file?  This is used to decide if we
  283.    have hit the '$' address yet. */
  284. int input_EOF = 0;
  285.  
  286. /* non-zero if a quit command has been executed. */
  287. int quit_cmd = 0;
  288.  
  289. /* Have we done any replacements lately?  This is used by the 't' command. */
  290. int replaced = 0;
  291.  
  292. /* How many '{'s are we executing at the moment */
  293. int program_depth = 0;
  294.  
  295. /* The complete compiled SED program that we are going to run */
  296. struct vector *the_program = 0;
  297.  
  298. /* information about labels and jumps-to-labels.  This is used to do
  299.    the required backpatching after we have compiled all the scripts. */
  300. struct sed_label *jumps = 0;
  301. struct sed_label *labels = 0;
  302.  
  303. /* The 'current' input line. */
  304. struct line line;
  305.  
  306. /* An input line that's been stored by later use by the program */
  307. struct line hold;
  308.  
  309. /* A 'line' to append to the current line when it comes time to write it out */
  310. struct line append;
  311.  
  312.  
  313. /* When we're reading a script command from a string, 'prog_start' and
  314.    'prog_end' point to the beginning and end of the string.  This
  315.    would allow us to compile script strings that contain nulls, except
  316.    that script strings are only read from the command line, which is
  317.    null-terminated */
  318. unsigned char *prog_start;
  319. unsigned char *prog_end;
  320.  
  321. /* When we're reading a script command fr